home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / email / MIMEAudio.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  3KB  |  68 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Class representing audio/* type MIME documents.'''
  5. import sndhdr
  6. from cStringIO import StringIO
  7. from email import Errors
  8. from email import Encoders
  9. from email.MIMENonMultipart import MIMENonMultipart
  10. _sndhdr_MIMEmap = {
  11.     'au': 'basic',
  12.     'wav': 'x-wav',
  13.     'aiff': 'x-aiff',
  14.     'aifc': 'x-aiff' }
  15.  
  16. def _whatsnd(data):
  17.     """Try to identify a sound file type.
  18.  
  19.     sndhdr.what() has a pretty cruddy interface, unfortunately.  This is why
  20.     we re-do it here.  It would be easier to reverse engineer the Unix 'file'
  21.     command and use the standard 'magic' file, as shipped with a modern Unix.
  22.     """
  23.     hdr = data[:512]
  24.     fakefile = StringIO(hdr)
  25.     for testfn in sndhdr.tests:
  26.         res = testfn(hdr, fakefile)
  27.         if res is not None:
  28.             return _sndhdr_MIMEmap.get(res[0])
  29.             continue
  30.     
  31.  
  32.  
  33. class MIMEAudio(MIMENonMultipart):
  34.     '''Class for generating audio/* MIME documents.'''
  35.     
  36.     def __init__(self, _audiodata, _subtype = None, _encoder = Encoders.encode_base64, **_params):
  37.         """Create an audio/* type MIME document.
  38.  
  39.         _audiodata is a string containing the raw audio data.  If this data
  40.         can be decoded by the standard Python `sndhdr' module, then the
  41.         subtype will be automatically included in the Content-Type header.
  42.         Otherwise, you can specify  the specific audio subtype via the
  43.         _subtype parameter.  If _subtype is not given, and no subtype can be
  44.         guessed, a TypeError is raised.
  45.  
  46.         _encoder is a function which will perform the actual encoding for
  47.         transport of the image data.  It takes one argument, which is this
  48.         Image instance.  It should use get_payload() and set_payload() to
  49.         change the payload to the encoded form.  It should also add any
  50.         Content-Transfer-Encoding or other headers to the message as
  51.         necessary.  The default encoding is Base64.
  52.  
  53.         Any additional keyword arguments are passed to the base class
  54.         constructor, which turns them into parameters on the Content-Type
  55.         header.
  56.         """
  57.         if _subtype is None:
  58.             _subtype = _whatsnd(_audiodata)
  59.         
  60.         if _subtype is None:
  61.             raise TypeError('Could not find audio MIME subtype')
  62.         
  63.         MIMENonMultipart.__init__(self, 'audio', _subtype, **_params)
  64.         self.set_payload(_audiodata)
  65.         _encoder(self)
  66.  
  67.  
  68.